home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Support Advantage Electronic Services
/
SGI Support Advantage Electronic Services.iso
/
CDgrelnotes
next >
Wrap
Text File
|
1995-09-12
|
418b
|
24 lines
#!/bin/sh
dirname()
{
ans=`/usr/bin/expr \
"${1:-.}/" : '\(/\)/*[^/]*//*$' `
if [ -n "$ans" ];then
echo $ans
else
ans=`/usr/bin/expr \
"${1:-.}/" : '\(.*[^/]\)//*[^/][^/]*//*$' `
if [ -n "$ans" ];then
echo $ans
else
echo "."
fi
fi
exit 0
}
SRCDIR=`dirname $0`/relnotes/
grelnotes -xrm "Grelnotes*relnotesPath: $SRCDIR"